home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Programmer Disk
/
The Programmer Disk (Microforum).iso
/
xpro
/
tutor
/
pro5
/
ch02_1.cpp
< prev
next >
Wrap
C/C++ Source or Header
|
1990-07-20
|
848b
|
37 lines
// Chapter 2 - Programming exercise 1
#include "iostream.h"
enum game_result {win, lose, tie, cancel, forfeit};
main()
{
game_result result;
enum game_result omit = cancel;
for (result = win;result <= forfeit;result++) {
if (result == forfeit)
cout << "We had to forfeit the game\n";
else if (result == omit)
cout << "The game was cancelled\n";
else {
cout << "The game was played ";
if (result == win)
cout << "and we won!";
if (result == lose)
cout << "and we lost.";
cout << "\n";
}
}
}
// Result of execution
//
// The game was played and we won!
// The game was played and we lost.
// The game was played
// The game was cancelled
// We had to forfeit the game